home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Games / MAME / src / msdos / mamalleg.h < prev    next >
C/C++ Source or Header  |  1999-10-04  |  384b  |  15 lines

  1. /*
  2.   special file to include allegro.h without compiler errors
  3. */
  4.  
  5. #define inline __inline__    /* inline is not an ANSI keyword so remap it */
  6. #undef INLINE                /* Allegro redefines our INLINE definition */
  7. #define ZERO_SIZE 1            /* avoid zero-length array declarations */
  8.  
  9. #include <allegro.h>
  10.  
  11. #undef inline
  12. #undef INLINE
  13. #define INLINE static __inline__
  14. #undef ZERO_SIZE
  15.